home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / lu62 / prtable.asm < prev    next >
Assembly Source File  |  1996-07-10  |  399b  |  19 lines

  1. ;/*
  2. ;  This is a "gate" to LU module, and a place where I store the vital
  3. ;  parameters of the LU module.
  4. ;
  5. ; CopyRight 1995. Nicholas Poljakov all rights reserved.
  6. ;
  7. ; */
  8.  
  9. .MODEL LARGE
  10.        PUBLIC _prtable, _svarea
  11.        EXTRN  _rout:PROC
  12. .CODE
  13. _prtable proc far
  14.        jmp _rout
  15. _svarea db 24 dup(0)    ; area for save envirounment
  16.         db 'LU62'
  17. _prtable endp
  18.         end
  19.